home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
FishMarket 1.0
/
FishMarket v1.0.iso
/
fishies
/
076-100
/
disk_094
/
modulatools
/
modulatools.linkfiles
< prev
next >
Wrap
AmigaDOS Script File
|
1992-05-06
|
3KB
|
93 lines
.KEY option
; This utility moves the link files required by ModulaTools in and out of RAM.
; I work in the t: directory, which I have assigned to ram:. Use an editor to
; change t: to the name of the directory in which you wish to work. Also, this
; utility works MUCH faster if COPY and DELETE are executed from RAM. Either
; copy them to your current (RAM) directory, or else use the PATH command to
; ensure that the RAM directory containing COPY and DELETE is searched prior to
; the c: directory. If you have a (fast) hard disk, you probably don't have to
; worry about these things...
; Oh yes, you must pass a parameter on the command line: c (COPY) or d (DELETE)
IF "<option>" EQ "d"
DELETE Sprites.lnk
DELETE Blitter.lnk
DELETE Interrupts.lnk
DELETE GraphicsBase.lnk
DELETE Colors.lnk
DELETE IntuiUtils.lnk
DELETE GraphicsLibrary.lnk
DELETE InOut.lnk
DELETE Intuition.lnk
DELETE Libraries.lnk
DELETE Memory.lnk
DELETE Menus.lnk
DELETE Screens.lnk
DELETE Storage.lnk
DELETE Strings.lnk
DELETE Views.lnk
DELETE Windows.lnk
DELETE AMIGAX.lnk
DELETE Copper.lnk
DELETE Rasters.lnk
DELETE Nodes.lnk
DELETE DOSLibrary.lnk
DELETE Conversions.lnk
DELETE Streams.lnk
DELETE DOSFiles.lnk
DELETE Lists.lnk
DELETE Tasks.lnk
DELETE Ports.lnk
DELETE Regions.lnk
DELETE LayersLibrary.lnk
DELETE Devices.lnk
DELETE IO.lnk
DELETE TimerDevice.lnk
DELETE InputEvents.lnk
DELETE ConsoleDevice.lnk
DELETE Text.lnk
ELSE
IF "<option>" EQ "c"
COPY m2:Sprites.lnk TO t:
COPY m2:Blitter.lnk TO t:
COPY m2:Interrupts.lnk TO t:
COPY m2:GraphicsBase.lnk TO t:
COPY m2:Colors.lnk TO t:
COPY m2:IntuiUtils.lnk TO t:
COPY m2:GraphicsLibrary.lnk TO t:
COPY m2:Intuition.lnk TO t:
COPY m2:InOut.lnk TO t:
COPY m2:Libraries.lnk TO t:
COPY m2:Memory.lnk TO t:
COPY m2:Menus.lnk TO t:
COPY m2:Screens.lnk TO t:
COPY m2:Storage.lnk TO t:
COPY m2:Strings.lnk TO t:
COPY m2:Views.lnk TO t:
COPY m2:Windows.lnk TO t:
COPY m2:AMIGAX.lnk TO t:
COPY m2:Copper.lnk TO t:
COPY m2:Rasters.lnk TO t:
COPY m2:Nodes.lnk TO t:
COPY m2:DOSLibrary.lnk TO t:
COPY m2:Conversions.lnk TO t:
COPY m2:Streams.lnk TO t:
COPY m2:DOSFiles.lnk TO t:
COPY m2:Lists.lnk TO t:
COPY m2:Tasks.lnk TO t:
COPY m2:Ports.lnk TO t:
COPY m2:Regions.lnk TO t:
COPY m2:LayersLibrary.lnk TO t:
COPY m2:Devices.lnk TO t:
COPY m2:IO.lnk TO t:
COPY m2:TimerDevice.lnk TO t:
COPY m2:InputEvents.lnk TO t:
COPY m2:ConsoleDevice.lnk TO t:
COPY m2:Text.lnk TO t:
ELSE
ECHO "Parameter required: d (to delete) or c (to copy)"
ENDIF
ENDIF